home *** CD-ROM | disk | FTP | other *** search
- '+-----------------------------------------------------------------------------+
- '| This will run fine IN the environment, or if compiled to a BRUN file, |
- '| it will PROBABLY not run if compiled to a BCOM file from INSIDE the |
- '| QB environment, only if compiled from DOS via QB problem2 /o; |
- '| |
- '| |
- '| PROBLEM3 - Similar to the makewind routine but a little less involved. |
- '| |
- '| PARAMETERS: |
- '| box=where box is to be (1=top half, 2=bottom, 3=left, 4=right, 5=all, |
- '| 6=center) |
- '| frame= frame style |
- '| clr = color of box frame |
- '+-----------------------------------------------------------------------------+
-
- CLEAR
- DEFINT a-z
-
- FOR x=1 TO 6
- CALL boxes(x, 2, x+8)
- LOCATE 24,30
- PRINT "Press any key to continue" ;
- ky$=INKEY$ : WHILE ky$="" : ky$=INKEY$ : WEND
- CLS : BEEP
- NEXT x
-
-